码迷,mamicode.com
首页 >  
搜索关键字:命令使用 tr | echo useradd    ( 22120个结果
restorecon 命令使用实例
当你将自定义文件添加到已经由SELinux策略管理的目录中时,如果自定义文件没有适当的SELinux上下文,那么将不会得到预期的结果。restorerecon命令的意思是恢复SELinux上下文。restorecon命令将文件和目录的SELinux安全上下文重置为默认值。这只会重置SELinux上下 ...
分类:其他好文   时间:2021-06-08 23:45:03    阅读次数:0
Tidb 主机系统参数优化shell
#!/bin/bash#echo "vm.swappiness = 0">> /etc/sysctl.confswapoff -a && swapon -asysctl -psystemctl stop firewalld.servicesystemctl disable firewalld.ser ...
分类:数据库   时间:2021-06-08 23:43:55    阅读次数:0
为了运维方便,新建用户并设置为sudo用户
很多时候root权限被上收,每次申请都特别麻烦。但是有时候排查问题,安装软件啥的都需要使用root权限才方便。所以可以这么干😄 1、先申请root用户。然后创建一个新用户user1 2、给user1加sodu权限 主要命令: 创建用户:useradd -d /home/user1/ user1 设 ...
分类:其他好文   时间:2021-06-07 21:14:25    阅读次数:0
python selenium 获取xlink元素内容
for link in driver.find_elements_by_css_selector("tr:nth-child(1) > td.taskStatus use"): assert_status = link.get_attribute('xlink:href') print(assert ...
分类:编程语言   时间:2021-06-07 20:49:35    阅读次数:0
centos7 清理缓存(buff/cache)
背景:服务器运行过程中发现内存不够用,缓存的又太多 现象: 解决办法: 1、同步数据到磁盘 [root@localhost ~]# sync 2、根据需求清除对应缓存 [root@localhost ~]# echo 3 > /proc/sys/vm/drop_caches 参数说明: 0 //默认 ...
分类:系统相关   时间:2021-06-07 20:40:37    阅读次数:0
【ROS学习】ROS中常用的指令
查看rosbag坐标系 rostopic echo topic_name | grep frame_id 打印话题数据 rostopic echo topic_name 查看话题消息频率 rostopic hz topic_name ...
分类:其他好文   时间:2021-06-07 20:25:45    阅读次数:0
Gerrit+replication 同步Gitlab
配置环境:gerrit 192.168.1.100gitlab 192.168.1.1011.创建秘钥 [root@gerrit ~]# ssh-keygen -m PEM -t rsa 2.添加hosts 解析 [root@gerrit ~]#echo "192.168.1.101 gitlab" ...
分类:其他好文   时间:2021-06-06 19:34:13    阅读次数:0
Windows10 没 hosts 文件
1. win+r 输入 cmd,回车 2. 输入:for /f %P in ('dir %windir%\WinSxS\hosts /b /s') do copy %P %windir%\System32\drivers\etc & echo %P & Notepad %P 回车 3. C:\Win ...
分类:Windows程序   时间:2021-06-05 18:24:08    阅读次数:0
picoctf_2018_echo_back
picoctf_2018_echo_back 题目分析 简单的格式化字符串,修改got@pus为main函数地址制造循环即可: 先制造循环 修改printf@got为system@plt 输入/bin/sh获取shell 最终EXP from pwn import * sh:tube = proce ...
分类:其他好文   时间:2021-06-05 18:01:10    阅读次数:0
supervisord 进程管理工具的使用 socket和python脚本进程管理
安装 pip install supervisord 安装完成,在项目根目录创建conf目录, 这个目录位置自己随意创建 生成conf文件 echo_supervisord_conf > conf配置文件名称 echo_supervisord_conf > test_supervisord.conf ...
分类:编程语言   时间:2021-06-05 17:49:44    阅读次数:0
22120条   上一页 1 ... 3 4 5 6 7 ... 2212 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!